:root {
    --main-blue-color: #075796;
    --teal-color: #38BFC3;
    --orange-color: #FF6F61;
}

body {
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1.5;
    font-family: "Montserrat", sans-serif;
    color: #000;
    padding-top: 100px;
}

.site-container {
	max-width: 1200px;
	margin: auto;
	display: block;
    padding: 0 25px;
}
.container1400 {
    max-width: 1400px;
    margin: auto;
}
.container1100 {
    max-width: 1100px;
    margin: auto;
}
.container1000 {
    max-width: 1000px;
    margin: auto;
}
.container800 {
    max-width: 800px;
    margin: auto;
}

.video-wrapper {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	margin-bottom: 10px
}
.video-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%
}


.youtube-play-button {
    cursor: pointer;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}
.youtube-play-button img{
    width: 100%;
    height: auto;
}
.youtube-play-button .play-button {
    width: 90px;
    height: 60px;
    background-color: #333;
    box-shadow: 0 0 30px rgba( 0, 0, 0, 0.6);
    z-index: 1;
    opacity: 0.8;
    border-radius: 6px;
    cursor: pointer;
    top: 50%;
    left: 50%;
    transform: translate3d( -50%, -50%, 0);
    position: absolute;
}
.youtube-play-button:hover .play-button{
    background-color: #d02f38;
}
.youtube-play-button .play-button:before {
    content: "";
    border-style: solid;
    border-width: 15px 0 15px 26.0px;
    border-color: transparent transparent transparent #fff;
    border-width: 8px 0 8px 18px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d( -50%, -50%, 0);
}
.video-container-box {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}
.video-container-box .youtube-play-button {
    position: initial;
}
.video-youtube-box {
    position: relative;
}
.video-youtube-box img{
    margin: 0; 
    width: 100%;
    height: auto;
    float: left;
}
.video-iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}



.video-half,
.half-video {
    display: inline-block;
    width: 50%;
    float: left;
    margin-right: 15px;
    padding-right: 15px;
    margin-bottom: 5px;
}

.image-half,
.img-half,
.half-img,
.half-image {
    display: inline-block;
    width: 50%;
    float: left;
    margin-right: 15px;
    padding-right: 15px;
    margin-bottom: 5px;
}

.bold {
    font-weight: bold;
}
.center{
    text-align: center;
}
.align-left,
.left-align {
    text-align: left;
}      
.align-right,
.right-align {
    text-align: right;
}      


h1, h2, h3, h4 {
    line-height: 1.4;
    font-weight: 500;
    font-family: "Oswald", sans-serif;
    color: var(--main-blue-color);
}
h1 {
    font-size: 50px;
    margin: 50px 0;
    text-align: center;
}     
h2 {
    font-size: 50px;
    margin: 25px 0;
    text-align: center;
}     
h3 {
    font-size: 35px;
    margin: 20px 0;
}     
h4 {
    font-size: 25px;
    margin: 15px 0;
}     

p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 15px;
    font-weight: 500;
}
li {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 5px;
    font-weight: 500;
}

ul.two {
    display: flow-root;
}
ul.two li{
    width: 50%;
    float: left;
    padding-right: 20px;
}
ul.three {
    display: flow-root;
}
ul.three li{
    width: 33%;
    float: left;
    padding-right: 20px;
}
ul.four {
    display: inline-block;
    width: 100%;
}
ul.four li{
    width: 25%;
    float: left;
    padding-right: 20px;
}
ul.flow {
    display: flow-root;
}
ol, ul {
    margin-bottom: 15px;
}

a {
    color: #ff6f61;
    transition: all 0.3s ease;
}


.buttons-center {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 20px;
}
.buttons-center a {
    display: inline-block;
    margin: 0 10px 10px;
    background: var(--orange-color);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    padding: 12px 25px;
    border: 0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.buttons-center a:focus,
.buttons-center a:hover {
    background: #eb493a;
    text-decoration: none;
    color: #fff;
}
.default-button {
    background: var(--orange-color);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    padding: 12px 25px;
    border: 0;
    border-radius: 10px;
    cursor: pointer;
    display: inline-block;
    transition: all 0.3s ease;
}
.default-button:focus,
.default-button:hover {
    background: #eb493a;
    text-decoration: none;
    color: #fff;
}


.mt0 {
    margin-top: 0!important;
}
.mb0 {
    margin-bottom: 0!important;
}


header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 0;
    background: var(--main-blue-color);
    z-index: 999;
}
header * {
    transition: all 0.3s ease;
}
header .site-container {
    max-width: 1920px;
}
header .nav {
    display: inline-block;
    width: 100%;
    float: left;
}
header .logo {
    display: inline-block;
    float: left;
}
header .logo img {
    max-width: 300px;
    height: auto;
}
header .open-menu {
    display: none;
}
header .close-menu {
    display: none;
}
header .menu {
    display: inline-block;
    float: right;
}
header .menu ul {
    margin: 0;
    padding: 0;
    display: inline-block;
}
header .menu ul li {
    display: inline-block;
    list-style: none;
    margin: 0;
}
header .menu ul li a {
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    padding: 5px;
    margin: 10px;
    display: inline-block;
}
header .menu ul li a:hover {
    color: #ff6f61;
    text-decoration: none;
}
header .menu ul li.phone a {
    padding: 10px 25px;
    line-height: 1.2;
}
header .menu ul li.phone a i {
    font-size: 16px;
}
header .menu ul li.phone a:hover {
    color: #fff;
}
.menu-overlay {
    display: none;
}

footer {
    display: inline-block;
    width: 100%;
    background: var(--teal-color);
    padding: 20px 0;
    text-align: center;
    color: #fff;
    /*margin-top: 50px;*/
}
.homepage footer {
    margin: 0;
}
footer p {
    margin: 10px 0;
    font-size: 16px;
}
footer p.links a {
    color: #fff;
    margin: 10px;
    display: inline-block;
    font-size: 16px;
}
footer p.links a i {
    font-size: 14px;
    margin-right: 5px;
}
footer p.links a.instagram i {
    font-size: 20px;
}

.contact-footer {
    background: var(--main-blue-color);
    padding: 100px 0;
}
.contact-footer h2 {
    color: #fff;
    margin-top: 0;
    text-align: left;
}
.contact-footer .contact-info {
    text-align: center;
    margin-bottom: 30px;
}
.contact-footer .contact-info img {
    width: 300px;
    margin: auto;
    margin-bottom: 50px;
}
.contact-footer .contact-info p {
    font-size: 25px;
    color: #fff;
    margin: 25px 0;
}
.contact-footer .contact-info p a {
    color: #fff;
}
.contact-footer .contact-info p a i {
    font-size: 20px;
    margin-right: 5px;
}


.default-text {
    padding-bottom: 50px;
}
.text-section {
    display: block;
    margin: 100px 0;
}

.home-hero {
    display: inline-block;
    width: 100%;
    position: relative;
}
.home-hero .video-div {
    position: relative;
    max-height: 700px;
    overflow: hidden;
}
.home-hero .video-div video {
    width: 100%;
    height: auto;
}
.home-hero .text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    display:-webkit-box;
    display:-moz-flex;
    display:-moz-box;
    display:-ms-flexbox;
    display:flex;
    align-items: center;
    /*justify-content: center;*/
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    display:-webkit-flex;
    flex-direction:row;
}
.home-hero .site-container {
    width: 100%;
}
.home-hero .text {
    max-width: 600px;
    float: left;
}
.home-hero .text h1 {
    font-size: 25px;
    color: #000;
    font-weight: 500;
    line-height: 1.5;
    font-family: "Montserrat", sans-serif;
    text-align: left;
}
.home-hero .text p {
    line-height: 1.4;
    font-weight: 500;
    font-family: "Oswald", sans-serif;
    color: var(--main-blue-color);
    font-size: 50px;
}


.pr50 {
    padding-right: 50px;
}

.how-it-works {
    background: #E9F0F6;
    display: block;
    padding: 100px 0;
    margin: 0;
    text-align: center;
}
.how-it-works .item {
    margin: 20px 0 50px;
}
.how-it-works .img img {
    max-width: 100px;
    display: block;
    margin: auto;
}
.how-it-works h4 {
    font-size: 30px;
}
.how-it-works p {
    font-size: 20px;
}


.clean-services {
    background: url(../images/clean-services-bg-image.jpg)  center center no-repeat;
    background-size: cover;
    text-align: center;
    color: #fff;
    padding: 10px 0 50px;
}
.clean-services h1,
.clean-services h2 {
    color: #fff;
}
.clean-services p.big {
    font-size: 30px;
}
.clean-services .flex {
    display:-webkit-box;
    display:-moz-flex;
    display:-moz-box;
    display:-ms-flexbox;
    display:flex;
    justify-content: center;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    display:-webkit-flex;
    flex-direction:row;
}
.clean-services .item {
    margin: 20px 0;
    text-align: center;
}
.clean-services .item .box {
    margin: auto;
}
.clean-services .item .img img {
    max-width: 100px;
    margin: auto;
}
.clean-services .item h4 {
    font-size: 30px;
    color: #fff;
    font-weight: 400;
    letter-spacing: 1px;
    margin: 20px 0;
}

ul.checkmark-list {
    padding-left: 50px;
}
ul.checkmark-list li {
    position: relative;
    list-style: none;
}
ul.checkmark-list li::before {
    content: "✔";
    position: absolute;
    left: -35px;
    top: 3px;
    color: var(--teal-color);
    font-weight: bold;
    font-size: 30px;
    line-height: 1;
}
ul.big li {
    font-size: 22px;
    margin-bottom: 15px;
}


/*contact page*/
body.contact-page {
    background: var(--main-blue-color);
}
body.contact-page h1 {
    color: #fff;
}
.content-contact .contact-info {
    text-align: center;
    margin-bottom: 30px;
}
.content-contact .contact-info img {
    width: 300px;
    margin: auto;
    margin-bottom: 50px;
}
.content-contact .contact-info p {
    font-size: 25px;
    color: #fff;
    margin: 25px 0;
}
.content-contact .contact-info p a {
    color: #fff;
}
.content-contact .contact-info p a i {
    font-size: 20px;
    margin-right: 5px;
}

.contact-form {
    background: #fff;
    display: inline-block;
    width: 100%;
    padding: 30px;
}
.contact-form .form-group {
    margin-bottom: 20px;
}
.contact-form label {
    font-weight: 500;
}
.contact-form label.error {
    color: red;
}
.contact-form input {
    padding: 10px;
    height: 45px;
    font-size: 17px;
    color: #000;
}
.contact-form select {
    padding: 10px;
    height: 45px;
    font-size: 17px;
    color: #000;
}
.contact-form textarea {
    padding: 10px;
    font-size: 17px;
    line-height: 1.6;
    color: #000;
    max-width: 100%;
    min-height: 150px;
    min-width: 100%;
}
.contact-form button {
    font-size: 17px;
}
div#error h4 {
    color: red;
    margin: 0;
}

/*blog page*/

.blogs .flex {
    display:-webkit-box;
    display:-moz-flex;
    display:-moz-box;
    display:-ms-flexbox;
    display:flex;
    justify-content: center;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    display:-webkit-flex;
    flex-direction:row;
}
.blogs .item {
    margin-bottom: 50px;
    text-align: center;
}
.blogs .item .image {
    overflow: hidden;
}
.blogs .item .image img {
    transition: all 0.4s ease;
}
.blogs .item:hover .image img {
    transform: scale(1.07);
}
.blogs .item .title {
    margin: 10px;
    font-size: 20px;
    line-height: 1.5;
}

.blog-article h2 {
    font-size: 40px;
}


/*faqs page*/

.general-accordion .panel-default {
    margin-bottom: 20px;
    border: 1px solid #075796;
}
.general-accordion .panel-heading {
    padding: 0;
    margin: 0;
    background: none;
    border: 0;
}
.general-accordion .panel-title a {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 600;
    display: inline-block;
    width: 100%;
    padding: 12px;
    color: #38bfc3;
}
.general-accordion .panel-title a i {
    float: right;
}
.general-accordion .panel-title a.collapsed {
    color: #075796;
}
.general-accordion .panel-title a.collapsed i {
    transform: rotate(180deg);
}


/*search page*/
.search-content {
    display: block;
    margin: auto;
    max-width: 1000px;
}
.search-results .result {
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
}   
.search-results .result .text p{
    margin-bottom: 0;
    font-size: 17px;
}
.search-results .result .text a.title{
    font-size: 19px;
    font-weight: 500;
    display: block;
    clear: both;
    margin-bottom: 5px;
}


.error-404 {
    max-width: 550px;
    margin: auto;
}
.error-404 form {
    display: inline-block;
    width: 100%;
}
.error-404 form input {
    display: inline-block;
    width: calc(100% - 100px);
    float: left;
    border: 1px solid #71bd37;
    height: 50px;
    padding: 10px;
    font-size: 18px;
    border-radius: 0;
}
.error-404 form button {
    display: inline-block;
    float: left;
    width: 100px;
    font-size: 17px;
    height: 50px;
    text-align: center;
    padding: 5px;
    margin: 0;
}


/*sitemap page*/
.sitemap-section .links {
    display: inline-block;
    width: 100%;
    text-align: center;
}
.sitemap-section .links a {
    display: inline-block;
    width: 25%;
    float: left;
    padding: 5px;
    margin-bottom: 15px;
}


.disclaimer-page h2,
.privacy-policy-page h2,
.terms-conditions-page h2 {
    font-size: 35px;
} 































